home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.92 / crossfir / crossfire-0.92.5 / include / osf.h < prev    next >
C/C++ Source or Header  |  1996-07-24  |  603b  |  24 lines

  1. /*
  2.  * Made this useless file to avoid warnings when compiling on a DEC/OSF1
  3.  * machine, since it is missing a few prototypes.
  4.  * Created:    30-12-93
  5.  * Author:    Kjetil W. J|rgensen, <jorgens@pvv.unit.no>
  6.  */
  7.  
  8. #ifndef __alpha
  9. long random(void);
  10. long srandom (int);
  11. char *crypt(char *, char *);
  12. void *memset(void *, int, size_t);
  13. int ftime(struct timeb *);
  14. void bcopy(char *, char *, int);
  15. void bzero(char *, int);
  16.  
  17. #ifdef SERVER
  18. unsigned short htons(unsigned short);
  19. unsigned long htonl(unsigned long);
  20. int getdtablesize(void);
  21. int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  22. #endif
  23. #endif
  24.